home *** CD-ROM | disk | FTP | other *** search
/ Windows 95 API Bible / Windows 95 API Bible 3 Disc Set.iso / Win32 API Bible Book 3 of 3 / CHAPTE22 / DEVCAPS.C < prev    next >
C/C++ Source or Header  |  1996-04-29  |  10KB  |  341 lines

  1.  
  2. #include <windows.h>
  3. #include <stdio.h>
  4. #include "DevCaps.h"
  5.  
  6. #if defined (WIN32)
  7.     #define IS_WIN32 TRUE
  8. #else
  9.     #define IS_WIN32 FALSE
  10. #endif
  11.  
  12. #define IS_NT      IS_WIN32 && (BOOL)(GetVersion() < 0x80000000)
  13. #define IS_WIN32S  IS_WIN32 && (BOOL)(!(IS_NT) && (LOBYTE(LOWORD(GetVersion()))<4))
  14. #define IS_WIN95   (BOOL)(!(IS_NT) && !(IS_WIN32S)) && IS_WIN32
  15.  
  16.  
  17. HINSTANCE hInst;   // current instance
  18.  
  19. LPCTSTR lpszAppName = "MyApp";
  20. LPCTSTR lpszTitle   = "My Application"; 
  21.  
  22. // the rest of the stuff
  23. //......................
  24.  
  25. BOOL RegisterWin95( CONST WNDCLASS* lpwc );
  26.  
  27.  
  28. int APIENTRY WinMain( HINSTANCE hInstance, HINSTANCE hPrevInstance,
  29.                       LPTSTR lpCmdLine, int nCmdShow)
  30. {
  31.    MSG      msg;
  32.    HWND     hWnd; 
  33.    WNDCLASS wc;
  34.  
  35.    wc.style         = CS_HREDRAW | CS_VREDRAW | CS_OWNDC;
  36.    wc.lpfnWndProc   = (WNDPROC)WndProc;       
  37.    wc.cbClsExtra    = 0;                      
  38.    wc.cbWndExtra    = 0;                      
  39.    wc.hInstance     = hInstance;              
  40.    wc.hIcon         = LoadIcon (hInstance, lpszAppName); 
  41.    wc.hCursor       = LoadCursor(NULL, IDC_ARROW);
  42.    wc.hbrBackground = (HBRUSH)(COLOR_WINDOW+1);
  43.    wc.lpszMenuName  = lpszAppName;              
  44.    wc.lpszClassName = lpszAppName;              
  45.  
  46.    if ( IS_WIN95 )
  47.    {
  48.       if ( !RegisterWin95( &wc ) )
  49.          return( FALSE );
  50.    }
  51.    else if ( !RegisterClass( &wc ) )
  52.       return( FALSE );
  53.  
  54.    hInst = hInstance; 
  55.  
  56.    hWnd = CreateWindow( lpszAppName, 
  57.                         lpszTitle,    
  58.                         WS_OVERLAPPEDWINDOW, 
  59.                         CW_USEDEFAULT, 0, 
  60.                         CW_USEDEFAULT, 0,  
  61.                         NULL,              
  62.                         NULL,              
  63.                         hInstance,         
  64.                         NULL               
  65.                       );
  66.  
  67.    if ( !hWnd ) 
  68.       return( FALSE );
  69.  
  70.    ShowWindow( hWnd, nCmdShow ); 
  71.    UpdateWindow( hWnd );         
  72.  
  73.    while( GetMessage( &msg, NULL, 0, 0) )   
  74.    {
  75.       TranslateMessage( &msg ); 
  76.       DispatchMessage( &msg );  
  77.    }
  78.  
  79.    return( msg.wParam ); 
  80. }
  81.  
  82.  
  83. BOOL RegisterWin95( CONST WNDCLASS* lpwc )
  84. {
  85.     WNDCLASSEX wcex;
  86.  
  87.    wcex.style         = lpwc->style;
  88.    wcex.lpfnWndProc   = lpwc->lpfnWndProc;
  89.    wcex.cbClsExtra    = lpwc->cbClsExtra;
  90.    wcex.cbWndExtra    = lpwc->cbWndExtra;
  91.    wcex.hInstance     = lpwc->hInstance;
  92.    wcex.hIcon         = lpwc->hIcon;
  93.    wcex.hCursor       = lpwc->hCursor;
  94.    wcex.hbrBackground = lpwc->hbrBackground;
  95.    wcex.lpszMenuName  = lpwc->lpszMenuName;
  96.    wcex.lpszClassName = lpwc->lpszClassName;
  97.  
  98.    // Added elements for Windows 95.
  99.    //...............................
  100.    wcex.cbSize = sizeof(WNDCLASSEX);
  101.    wcex.hIconSm = LoadImage(wcex.hInstance, lpwc->lpszClassName, 
  102.                             IMAGE_ICON, 16, 16,
  103.                             LR_DEFAULTCOLOR );
  104.             
  105.    return RegisterClassEx( &wcex );
  106. }
  107.  
  108.  
  109. LRESULT CALLBACK About( HWND hDlg,           
  110.                         UINT message,        
  111.                         WPARAM wParam,       
  112.                         LPARAM lParam)
  113. {
  114.    switch (message) 
  115.    {
  116.        case WM_INITDIALOG: 
  117.                return (TRUE);
  118.  
  119.        case WM_COMMAND:                              
  120.                if (   LOWORD(wParam) == IDOK         
  121.                    || LOWORD(wParam) == IDCANCEL)    
  122.                {
  123.                        EndDialog(hDlg, TRUE);        
  124.                        return (TRUE);
  125.                }
  126.                break;
  127.    }
  128.  
  129.    return (FALSE); 
  130. }
  131.  
  132.  
  133. #define MSG_LEN          1024
  134. #define Display(s)   SendMessage(hListBox, LB_ADDSTRING, 0, (LPARAM)s)
  135.  
  136. int        nTabStop = 200;
  137. char       msg[MSG_LEN+1];
  138.  
  139. HWND       hListBox = NULL;
  140. MMRESULT   rc;
  141.  
  142. UINT       nDevId = 0;
  143.  
  144. VOID DisplayDevCaps(HWND hWnd, UINT nDevId);
  145.  
  146.  
  147. LRESULT CALLBACK WndProc( HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam )
  148. {
  149.    switch( uMsg )
  150.    {
  151.       case WM_CREATE :
  152.               // Create ListBox
  153.               //...............
  154.  
  155.               hListBox = CreateWindow( "LISTBOX", "",    
  156.                                        WS_CHILD | LBS_NOTIFY | 
  157.                                        WS_VSCROLL | WS_BORDER | 
  158.                                        WS_VISIBLE | LBS_NOINTEGRALHEIGHT |
  159.                                        LBS_USETABSTOPS, 
  160.                                        0, 0, 
  161.                                        0, 0,  
  162.                                        hWnd,              
  163.                                        (HMENU)101,              
  164.                                        hInst,         
  165.                                        NULL );
  166.               SendMessage(hListBox, LB_SETTABSTOPS, 1, (LPARAM)&nTabStop);
  167.               break;
  168.  
  169.       case WM_SIZE :
  170.               MoveWindow( hListBox, 0, 0, 
  171.                           LOWORD( lParam ), 
  172.                           HIWORD( lParam ), TRUE );
  173.               break;
  174.  
  175.       case WM_COMMAND :
  176.               switch( LOWORD( wParam ) )
  177.               {
  178.                  case IDM_TEST:
  179.                         {
  180.                            SendMessage(hListBox, LB_RESETCONTENT, 0, 0);
  181.  
  182.                            sprintf(msg, "Joystick device driver supports %ld"
  183.                                         " joysticks.", joyGetNumDevs());
  184.                            Display(msg);
  185.                            Display("");
  186.  
  187.                            for (nDevId = 0; nDevId < joyGetNumDevs(); nDevId++)
  188.                               DisplayDevCaps(hWnd, nDevId);
  189.                         }
  190.                         break;
  191.  
  192.                  case IDM_ABOUT :
  193.                         DialogBox( hInst, "AboutBox", hWnd, About );
  194.                         break;
  195.  
  196.                  case IDM_EXIT :
  197.                         DestroyWindow( hWnd );
  198.                         break;
  199.               }
  200.               break;
  201.  
  202.       case WM_DESTROY :
  203.               PostQuitMessage(0);
  204.               break;
  205.  
  206.       default :
  207.             return( DefWindowProc( hWnd, uMsg, wParam, lParam ) );
  208.    }
  209.  
  210.    return( 0L );               
  211. }
  212.  
  213. /*****************************************************************************
  214. *  DisplayDevCaps
  215. *
  216. *
  217. *
  218. ******************************************************************************/
  219.  
  220. VOID DisplayDevCaps(HWND hWnd, UINT nDevId)
  221. {
  222.    JOYCAPS jc;
  223.    JOYINFO ji;
  224.  
  225.    Display("");
  226.  
  227.    // check if joystick is plugged in
  228.    //................................
  229.  
  230.    if ( joyGetPos(nDevId, &ji) )
  231.    {
  232.        sprintf(msg, "Joystick #%ld:\t Not plugged in.", nDevId);
  233.        Display(msg);
  234.        return;
  235.    }
  236.    else
  237.    {
  238.        sprintf(msg, "Joystick #%ld:\t Capabilities:", nDevId);
  239.        Display(msg);
  240.        Display("");
  241.    }
  242.  
  243.    joyGetDevCaps(nDevId, &jc, sizeof(JOYCAPS));
  244.    
  245.    sprintf(msg, "Device driver manufacturer ID:\t %ld", jc.wMid);
  246.    Display(msg);
  247.    
  248.    sprintf(msg, "Product ID:\t %ld", jc.wPid);
  249.    Display(msg);
  250.    
  251.    sprintf(msg, "Product name:\t %s", jc.szPname);
  252.    Display(msg);
  253.  
  254.    sprintf(msg, "Registry key:\t %s", jc.szRegKey);
  255.    Display(msg);
  256.  
  257.    sprintf(msg, "Joystick driver OEM:\t %s", jc.szOEMVxD);
  258.    Display(msg);
  259.    Display("");
  260.    
  261.    // joystick capabilities
  262.    //......................
  263.    
  264.    sprintf(msg, "Number of buttons:\t Supported:%ld,   In-use:%ld", 
  265.                 jc.wMaxButtons, jc.wNumButtons);
  266.    Display(msg);
  267.    
  268.    sprintf(msg, "Number of axes:\t Supported:%ld,   In-use:%ld", 
  269.                 jc.wMaxAxes, jc.wNumAxes);
  270.    Display(msg);
  271.  
  272.    sprintf(msg, "Supports z-coordinate:\t %s", 
  273.            ((jc.wCaps & JOYCAPS_HASZ) ? "Yes" : "No") );
  274.    Display(msg);
  275.  
  276.    sprintf(msg, "Supports rudder (forth-axis):\t %s", 
  277.            ((jc.wCaps & JOYCAPS_HASR) ? "Yes" : "No") );
  278.    Display(msg);
  279.    
  280.    sprintf(msg, "Supports u-coordinate (fifth-axis):\t %s", 
  281.            ((jc.wCaps & JOYCAPS_HASU) ? "Yes" : "No") );
  282.    Display(msg);
  283.    
  284.    sprintf(msg, "Supports v-coordinate (sixth-axis):\t %s", 
  285.            ((jc.wCaps & JOYCAPS_HASV) ? "Yes" : "No") );
  286.    Display(msg);
  287.    
  288.    sprintf(msg, "Supports point-of-view (POV):\t %s", 
  289.            ((jc.wCaps & JOYCAPS_HASPOV) ? "Yes" : "No") );
  290.    Display(msg);
  291.    
  292.    sprintf(msg, "Supports POV (centered, forward, backward, left,and right):\t %s", 
  293.            ((jc.wCaps & JOYCAPS_POV4DIR) ? "Yes" : "No") );
  294.    Display(msg);
  295.    
  296.    sprintf(msg, "Supports POV degree bearings:\t %s", 
  297.            ((jc.wCaps & JOYCAPS_POVCTS) ? "Yes" : "No") );
  298.    Display(msg);
  299.    
  300.    // range information
  301.    //..................
  302.    
  303.    sprintf(msg, "X-coordinate range (first-axis):\t %ld..%ld", 
  304.                 jc.wXmin, jc.wXmax);
  305.    Display(msg);
  306.    
  307.    sprintf(msg, "Y-coordinate range (second-axis):\t %ld..%ld", 
  308.                 jc.wYmin, jc.wYmax);
  309.    Display(msg);
  310.    
  311.    sprintf(msg, "Z-coordinate range (third-axis):\t %ld..%ld", 
  312.                 jc.wZmin, jc.wZmax);
  313.    Display(msg);
  314.    
  315.    sprintf(msg, "R-coordinate (rudder) range (fourth-axis):\t %ld..%ld", 
  316.                 jc.wRmin, jc.wRmax);
  317.    Display(msg);
  318.    
  319.    sprintf(msg, "U-coordinate range (fifth-axis):\t %ld..%ld", 
  320.                 jc.wUmin, jc.wUmax);
  321.    Display(msg);
  322.    
  323.    sprintf(msg, "V-coordinate range (sixth-axis):\t %ld..%ld", 
  324.                 jc.wVmin, jc.wVmax);
  325.    Display(msg);
  326.  
  327.    sprintf(msg, "Polling frequency range supported:\t %ld..%ld", 
  328.                 jc.wPeriodMin, jc.wPeriodMax);
  329.    Display(msg);
  330.  
  331.    
  332. }
  333.  
  334.  
  335.  
  336.  
  337.  
  338.  
  339.  
  340.  
  341.